body {
    margin: 0;
    font-family: 'Times New Roman', Times, serif;
}
header {
    background-color: #ffffff;
}
.top-bar {
    background-color: #000000;
    color: #ffffff;
    text-align:right;
    padding: 10px 70px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.contact-info span {
    margin-left: 35px;
}
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo img {
      float: left;
      position: relative;
      top: -20px;
}
.nav-links {
    list-style-type: none;
    display: flex;
    gap: 20px;
    padding: 0;
}
.nav-links li {
    display: inline-block;
    position: relative;
}
.nav-links a {
    text-decoration: none;
    color: #000000;
    font-weight: bold;
    display: block;
}
.dropbtn {
    cursor: pointer;
    font-size: large;
}

.dropdown-content {
    display: none;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    background-color: #d2e3ee;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    transform: translateX(-20px);
    transition: visibility 0s, opacity 0.5s ease, transform 0.5s ease;
}

.dropdown-content a {
    color: rgb(1, 0, 26);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown-content.show {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}
.show {
    display: block;
}

.contact-button {
    background-color: #22126d;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    width: 150px;
    height: 50px;
    border-radius: 8px;
    margin-left: 90px;
    font-weight: bold;
    position: relative;
    top: -15px;
}

.contact-button:hover {
    background-color: #2d1985f1;
}

.contact-us {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
}
.divider {
    width: 120px;
    height: 5px;
    margin: 8px auto;
    display: flex;
    justify-content: space-between;
    gap: 7px;
}
.divider span {
    display: block;
    height: 100%;
}
.divider .red {
    background-color: red;
    width: 50%;
    margin-left: -30px;
}
.divider .pink {
    background-color: hotpink;
    width: 50%;
    margin-right: 40px;
}
.message {
    font-size: 17px;
    color: gray;
    text-align: center;
}
.contact-form {
    /*background: linear-gradient(135deg, #ff6f61, #ff9472);*/
    background-image: url('https://media.istockphoto.com/id/958693744/vector/abstract-red-light-trail-on-blue-background.jpg?s=612x612&w=0&k=20&c=zaklCkqKZFiZFGcOjasGZLopy_cgp7fyA1yXltxQGDc=');

    padding: 2rem;
    border-radius: 27%;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.5);
    width: 400px;
    height: auto;
    position: relative;
    margin-left: 350px;
    margin-top: 30px;
}
form {
    display: flex;
    flex-direction: column;
}
.contact-form h2 {
    color: white;
    text-align: center;
}
input, select, textarea, #send{
    margin: 0.5rem 0;
    padding: 0.75rem;
    border: none;
    border-radius: 0.5rem;
    outline: none;
}
input, select, textarea {
    width: 80%;
}
#send {
    background-color: #c2189d;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 200px;
    margin-left: 50px;
}

#send:hover {
    background-color: #50042e;
}

.navbar {
    overflow: hidden;
    background-color: #333;
}
.navbar button {
    background-color: #333;
    color: white;
    padding: 14px 20px;
    cursor: pointer;
    float: left;
    border: none;
    outline: none;
}
.navbar button:hover {
    background-color: #ddd;
    color: black;
}
.navbar button:visited{
    background-color: #22126d;
}
.tabcontent {
    padding: 20px;
    display: none;
}
.tabcontent h2 {
    color: #22126d;
}
.location-details {
    display: flex;
    justify-content: space-between;
}
.location-details iframe {
    width: 50%;
    height: 400px;
}

.details {
    width: 45%;
    font-size: 18px;    
}
strong {
    color: #22126d;
}

.nav-width {
    padding: 80px;
}
.contacto {
    padding: 50px;
    background-color: #e3edf3;
    margin-top: -60px;
}
.contacto h1 {
    text-align: center;
    font-size: 3rem;
}
.social-icons img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
}
.footer-container {
    background-color: #030303;
    color: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    position: scroll;
    height: 200px;
}

.footer-logo img {
    max-width: 100%;
    height: auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-left: 270px;
    line-height: 2.2rem;
}

.footer-content p {
    margin: 10px 0;
    font-size: 18px;
}
/* For small devices (phones) */
@media only screen and (max-width: 600px) {
    /* Styles for phones */
  }
  
  /* For medium devices (tablets) */
  @media only screen and (min-width: 601px) and (max-width: 768px) {
    /* Styles for tablets */
  }
  
  /* For larger devices (desktops, TVs) */
  @media only screen and (min-width: 769px) {
    /* Styles for desktops */
  }
  
